home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Periodicals / develop / develop 10 code / LWFontUtility / NamerUtilDev / UTILHead.a < prev   
Encoding:
Text File  |  1992-04-08  |  1.2 KB  |  48 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        UTILHead.a
  3. ;
  4. ;    Contains:    The header for a LaserWriter Font Utility UTIL resource
  5. ;
  6. ;    Written by:    Bryan K. Ressler (Beaker)
  7. ;
  8. ;    Copyright:    © 1990 by Apple Computer, Inc., all rights reserved.
  9. ;
  10. ;    Change History (most recent first):
  11. ;
  12. ;        6/19/90        bkr        changed imported names to all uppercase (a la Pascal)
  13. ;        6/13/90        bkr        added reference to UtilDelta routine
  14. ;        6/1/90        bkr        original version
  15. ;
  16. ;    To Do:
  17. ;
  18.  
  19.     case obj
  20.     
  21.     main
  22.  
  23. UtilBegin
  24.     dc.w    1                        ; the version
  25.     dc.w    ResSpace                ; our resource space starts here
  26.     dc.l    UtilOpen - UtilBegin    ; the offset to the beginning of the Open routine
  27.     dc.l    UtilDelta - UtilBegin    ; the offset to the beginning of the Delta routine
  28.     dc.l    UtilPrime - UtilBegin    ; the offset to the beginning of the Prime routine
  29.     dc.l    UtilClose - UtilBegin    ; the offset to the beginning of the Close routine
  30.  
  31. UtilOpen
  32.     import    UTILITY_OPEN
  33.     jmp        UTILITY_OPEN            ; call the actual Open routine, elsewhere
  34.  
  35. UtilDelta
  36.     import    UTILITY_DELTA
  37.     jmp        UTILITY_DELTA            ; call the actual Delta routine, elsewhere
  38.  
  39. UtilPrime
  40.     import    UTILITY_PRIME
  41.     jmp        UTILITY_PRIME            ; call the actual Prime routine, elsewhere
  42.  
  43. UtilClose
  44.     import    UTILITY_CLOSE
  45.     jmp        UTILITY_CLOSE            ; call the actual Close routine, elsewhere
  46.  
  47.     end
  48.